/* HeroSection.css */
.hero {
  position: relative;
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: var(--color-primary);
  color: var(--color-white);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
  filter: sepia(30%) brightness(0.7);
}

.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, transparent 0%, rgba(27, 58, 92, 0.8) 100%);
  z-index: 2;
}

.hero__content {
  position: relative;
  z-index: 3;
  max-width: 800px;
  padding: 0 var(--space-md);
}

.hero__subtitle {
  font-family: var(--font-sans);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--color-accent-light);
  margin-bottom: var(--space-sm);
  display: block;
}

.hero__title {
  font-size: 4rem;
  color: var(--color-white);
  margin-bottom: var(--space-md);
  line-height: 1.1;
}

.hero__desc {
  font-size: 1.25rem;
  opacity: 0.9;
  margin-bottom: var(--space-lg);
  font-family: var(--font-sans);
}

.hero__actions {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
}

@media (max-width: 1024px) {
  .hero__title {
    font-size: 3rem;
  }
}

@media (max-width: 768px) {
  .hero {
    height: 80vh;
  }
  
  .hero__title {
    font-size: 2.2rem;
  }
  
  .hero__actions {
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
  }
}
